View Javadoc

1   /*
2    * Copyright (c) 2004-2005, University Health Network.  All rights reserved. Distributed under the BSD 
3    * license (see http://opensource.org/licenses/bsd-license.php).
4    *  
5    * HibernateQueryResultStoreException.java
6    *
7    * Created on 15-Dec-2004 at 5:09:59 PM
8    */
9   package ca.uhn.cache.internal.hibernate.exception;
10  
11  import ca.uhn.cache.internal.exception.QueryResultStoreException;
12  
13  /***
14   * Thrown by the methods of the class {@link HibernateQueryResultStore} when an
15   * exception thrown by Hibernate is captured.  
16   * 
17   * @author <a href="mailto:alexei.guevara@uhn.on.ca">Alexei Guevara</a>
18   * @version $Revision: 1.1 $ updated on $Date: 2005/01/24 22:54:37 $ by $Author: bryan_tripp $
19   */
20  public class HibernateQueryResultStoreException extends QueryResultStoreException {
21  
22      /***
23       * {@inheritDoc}
24       */
25      public HibernateQueryResultStoreException( Throwable theCause ) {
26          super( theCause );
27      }
28  
29      /***
30       * {@inheritDoc}
31       */
32      public HibernateQueryResultStoreException( String theMessage, Throwable theCause ) {
33          super( theMessage, theCause );
34      }
35  
36  }